/* ===================================================== */
/*                    بخش اخبار                           */
/* ===================================================== */



.news-section{

    position:relative;

    width:100%;

    margin:40px 0 0;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(0,255,255,.12);

    border-radius:24px;

    padding:36px;

    box-sizing:border-box;

    overflow:hidden;

}



/* ===================================================== */
/*                 عنوان اخبار                            */
/* ===================================================== */

.news-title{

    margin-bottom:26px;

}

.news-title h2{

    font-size:32px;

    color:#ffffff;

}



/* ===================================================== */
/*               کانتینر اخبار                            */
/* ===================================================== */

#news-container{

    display:grid;

    grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));

    gap:20px;

}



/* ===================================================== */
/*                    کارت خبر                            */
/* ===================================================== */

.news-card{

    min-height:150px;

    display:flex;

    flex-direction:column;

    padding:22px 24px;

    border-radius:18px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(0,255,255,.12);

    transition:.3s;

}

.news-card:hover{

    border-color:rgba(0,255,255,.35);

    transform:translateY(-3px);
}



.news-card h3{

    font-size:19px;

    line-height:1.6;

    color:#ffffff;

    margin-bottom:10px;

}

.news-card .news-summary{

    flex:1;
}



.news-time{

    font-size:13px;

    color:#8b949e;

    margin-top:14px;

}


/* ===================================================== */
/*           اسکلتِ ساختگیِ کارت خبر (قفل‌شده)              */
/* ===================================================== */

.news-badge-fake{

    display:inline-block;

    width:70px;

    height:16px;

    border-radius:20px;

    background:rgba(0,255,238,.25);

    margin-bottom:14px;
}

.news-line{

    height:12px;

    border-radius:6px;

    background:rgba(255,255,255,.18);

    margin-bottom:10px;
}

.news-line.w60{ width:60%; }
.news-line.w80{ width:80%; }
.news-line.w90{ width:90%; }


/* ===================================================== */
/*         قفلِ محتوا برای کاربرهای غیرعضو                  */
/* ===================================================== */

.blurred-content{

    filter:blur(7px);

    opacity:.55;

    user-select:none;

    pointer-events:none;
}

.lock-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:14px;

    background:linear-gradient(180deg, rgba(2,6,17,.2), rgba(2,6,17,.85) 55%);

    padding:20px;

    text-align:center;

    border-radius:24px;

    direction:rtl;
}

.lock-icon{

    width:56px;

    height:56px;

    border-radius:50%;

    background:rgba(0,245,255,.12);

    border:1px solid rgba(0,245,255,.4);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    box-shadow:0 0 25px rgba(0,245,255,.25);
}

.lock-title{

    font-size:15px;

    font-weight:700;

    color:#ffffff;
}

.lock-sub{

    font-size:12.5px;

    color:#8a93a6;

    max-width:280px;

    line-height:1.8;
}

.cta-btn{

    margin-top:6px;

    padding:11px 26px;

    border-radius:12px;

    border:none;

    background:linear-gradient(90deg,#00f5ff,#8c52ff);

    color:#020611;

    font-weight:800;

    font-size:13.5px;

    cursor:pointer;

    text-decoration:none;

    display:inline-block;

    transition:.2s;
}

.cta-btn:hover{

    filter:brightness(1.1);

    transform:translateY(-1px);
}